home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / tools / unshar / index.c < prev    next >
Encoding:
Text File  |  1990-01-19  |  113 b   |  10 lines

  1. char *index(s, c)
  2. register char *s, c;
  3. {
  4.   do {
  5.     if (*s == c)
  6.         return(s);
  7.   } while (*s++ != 0);
  8.   return(0);
  9. }
  10.